home *** CD-ROM | disk | FTP | other *** search
/ El Mac 7 / El Mac 7.iso / Infotenimiento / Makers of the 20th Century / Data / SHARED.DIR / 01037_spider drag.ls < prev    next >
Encoding:
Text File  |  1996-03-14  |  421 b   |  18 lines

  1. on mouseDown
  2.   set omh to the mouseH
  3.   set omv to the mouseV
  4.   repeat while the mouseDown
  5.     set mh to the mouseH
  6.     set mv to the mouseV
  7.     set dh to mh - omh
  8.     set dv to mv - omv
  9.     repeat with i = 36 to 43
  10.       set the locH of sprite i to the locH of sprite i + dh
  11.       set the locV of sprite i to the locV of sprite i + dv
  12.     end repeat
  13.     updateStage()
  14.     set omh to mh
  15.     set omv to mv
  16.   end repeat
  17. end
  18.